Array Properties

The Array object contains the following properties:

Property SubType Read Only Description

Count

Long

Yes

Returns the number of items in the array. Always equal to UBound + 1.

item

Long

 

Returns an item in the array. The default property, so it does not need to be explicitly named.

LBound

Long

Yes

Returns 0 - the lowest legal index for the array.

UBound

Long

Yes

Returns the highest legal index for the array. Always equal to Count() - 1.

Note: See CxScript.Array Usage Notes for information about using these properties with the ReDim and Resize methods.